Learn R Programming

tiledb (version 0.30.2)

[<-,tiledb_config,ANY,ANY,ANY-method: Sets a config parameter value

Description

Sets a config parameter value

Usage

# S4 method for tiledb_config,ANY,ANY,ANY
[(x, i, j) <- value

Value

updated tiledb_config object

Arguments

x

tiledb_config object

i

parameter key string

j

parameter key string

value

value to set, will be converted into a stringa

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
cfg <- tiledb_config()
cfg["sm.tile_cache_size"]

# set tile cache size to custom value
cfg["sm.tile_cache_size"] <- 100
cfg["sm.tile_cache_size"]

Run the code above in your browser using DataLab